home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 November / Macworld (1999-11).dmg / Shareware World / Comms & Internet / DropFTP 1.0a7 w⁄ DD / Extras / BBEdit Scripts / Save with DropFTP < prev   
Encoding:
Text File  |  1999-08-23  |  459 b   |  16 lines  |  [TEXT/ToyS]

  1. tell application "BBEdit 5.1"
  2.     try
  3.         if modified of window 1 is true then save window 1
  4.     on error errString
  5.         display dialog "Error: " & errString buttons "OK" default button 1
  6.     end try
  7.     try
  8.         set myfile to file of window 1
  9.         tell application "DropFTP 1.0a7" -- RENAME THE APPLICATION TO MATCH YOUR COPY OF DROPFTP
  10.             activate
  11.             open myfile
  12.         end tell
  13.     on error errString
  14.         display dialog "Error: " & errString buttons "OK" default button 1
  15.     end try
  16. end tell